build: Quiet automake warning for bupsplit
authorColin Walters <walters@verbum.org>
Tue, 21 Mar 2017 19:14:06 +0000 (15:14 -0400)
committerAtomic Bot <atomic-devel@projectatomic.io>
Tue, 21 Mar 2017 21:16:04 +0000 (21:16 +0000)
Use `_SRCS` and not `_SOURCES`, the latter of which makes automake assume
there's something for it to do.

Closes: #749
Approved by: jlebon

Makefile-libostree.am

index 15711dc9e96727c18f7df918c95093d0ff379be6..192db36ee8d9436e8db19ea9720dda3252deb611 100644 (file)
@@ -24,9 +24,9 @@ noinst_LTLIBRARIES += libostree-kernel-args.la
 
 if ENABLE_RUST
 bupsplitpath = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/libbupsplit_rs.a
-BUPSPLIT_RUST_SOURCES = rust/src/bupsplit.rs
-EXTRA_DIST += $(BUPSPLIT_RUST_SOURCES)
-$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SOURCES)
+BUPSPLIT_RUST_SRCS = rust/src/bupsplit.rs
+EXTRA_DIST += $(BUPSPLIT_RUST_SRCS)
+$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SRCS)
        cd $(top_srcdir)/rust && CARGO_TARGET_DIR=@abs_top_builddir@/target cargo build --verbose $(CARGO_RELEASE_ARGS)
 else
 bupsplitpath = libbupsplit.la